home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 1.toast / pc / tool chest / development kits / mpw related / mpw script tips 1.1.1 / sample scripts / cleanwindows < prev    next >
Encoding:
Text File  |  1991-08-16  |  630 b   |  18 lines

  1. #----------------------------------------------------------------------------------------------------------------------------------------------------
  2. #    CleanWindows
  3. #    MPW Shell Script
  4. #    Written by Godfrey DiGiorgi, 12/14/88
  5. #    Copyright:    © 1991 by Apple Computer, Inc., all rights reserved.
  6. #
  7. #    Usage:
  8. #            CleanWindows
  9. #    Function:
  10. #            Set all windows to default size.
  11. #----------------------------------------------------------------------------------------------------------------------------------------------------
  12.  
  13. #    Loop through list of open windows.
  14.     For F in `Windows`
  15.         Movewindow 2 2 "{F}"
  16.         Sizewindow 512 386 "{F}"
  17.     End
  18.